home *** CD-ROM | disk | FTP | other *** search
/ Softline PAY-CD / Softline PAY-CD(1994).iso / programm / allclear / demo / disk1 / examples / general.cmp / 123FNCTN.ACL next >
Encoding:
Text File  |  1990-10-09  |  2.3 KB  |  62 lines

  1. 1-2-3 Functions
  2.  
  3. 1-2-3 Functions \
  4.    Database statistical functions\
  5.       Average of values in list | @DAVG  (input, offset, criterion).
  6.       Count of items in list | @DCOUNT  (input, offset, criterion).
  7.       Maximum of values in list |  @DMAX  (input, offset, criterion).
  8.       Minimum of values in list  | @DMIN  (input, offset, criterion).
  9.       Standard deviation of values in list  |  @DSTD  (input, offset, criterion).
  10.       Sum of values in list  | @DSUM  (input, offset, criterion).
  11.       Variance of values in list | @DVAR  (input, offset, criterion).
  12.    \end
  13.    Date functions\
  14.       Date  |  @DATE  (year, month, day).
  15.       Day number |  @DAY  (date).
  16.       Month number | @MONTH  (date).
  17.       Year number | @YEAR  (date).
  18.       DOS system date |  @TODAY.
  19.    \end
  20.    Financial functions\
  21.       Future value  | @FV  (pmt, int, term).
  22.       Internal rate of return | @IRR  (guess, range).
  23.       Net present value | @NPV  (x, range).
  24.       Payment |  @PMT  (prn, int, term).
  25.       Present value |  @PV  (pmt, int, term).
  26.    \end
  27.    Logical functions\
  28.       False, value of 0 | @FALSE.
  29.       True, value of 1 |  @TRUE.
  30.       Value of 1 if Not Available | @ISNA  (x).
  31.       Value of 1 if Error | @ISERR  (x).
  32.       If Condition is False, then x, else y | @IF  (condition, x, y).
  33.    \end
  34.    Mathematical functions\
  35.       Absolute value | @ABS  (x).
  36.       Exponent | @EXP  (x).
  37.       Integer    \ @INT  (x).
  38.       Log base 10 | @LOG  (x).
  39.       Log base e | @LN  (x).
  40.       Pi | @PI.
  41.       Random number between 0 and 1 | @RAND.
  42.       Round x to d decimal places | @ROUND  (x, d).
  43.       X Mod y | @MOD  (x, y).  
  44.    \end
  45.    Special functions\
  46.       Not Available | @NA.
  47.       Error | @ERR.
  48.       Indexed lookup | @CHOOSE  (index, x1, x2, ...).
  49.       Horizontal table look up | @HLOOKUP  (x, range).
  50.       Vertical table look up | @VLOOKUP  (x, range).
  51.    \end
  52.    Statistical functions \
  53.       Average of values in list | @AVG  (list).
  54.       Count of items in list | @COUNT  (list).
  55.       Maximum of values in list | @MAX  (list).
  56.       Minimum of values in list | @MIN  (list).
  57.       Standard deviation of values in list | @STD  (list).
  58.       Sum of values in list | @SUM  (list).
  59.       Variance of values in list | @VAR  (list).
  60.    \end
  61. \end
  62.